Slide 13

Binary Tree ADT

Interact with the specialized operations for a binary tree.

Binary ADT Operations

Select an operation to begin.

Code Interface (Python-like)

class BinaryTree(Tree):
  def left(self, p): ...
  def right(self, p): ...
  def set_left(self, p, val): ...
  def set_right(self, p, val): ...